home *** CD-ROM | disk | FTP | other *** search
/ Champak 123 / (Vol 123) Jan 13 2011.iso / Games / plumber_2.swf / scripts / DefineButton2_271 / BUTTONCONDACTION on(release).as next >
Text File  |  2011-01-13  |  302b  |  16 lines

  1. on(release){
  2.    if(_root.use == 1 && pipe.r == 0 && pipe.typeofpipe != 4)
  3.    {
  4.       _root.turnsound.start();
  5.       dirn = pipe.dir;
  6.       _root.moves = _root.moves + 1;
  7.       dirn++;
  8.       if(dirn == 5)
  9.       {
  10.          dirn = 1;
  11.       }
  12.       pipe.dir = dirn;
  13.       pipe.r = 2;
  14.    }
  15. }
  16.